*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
}

.navBar{
    list-style-type: none;
    overflow: hidden;
    background-color: var(--bg-color);
    position: sticky;
    display: flex;
    align-items: center;
    flex-direction: column; 
}
.logo{
  margin-left: 8%;
  padding: 5px;
}
.logo img{
  width: 5em;
}
.navBar ul{
    margin-left: 0;
}
.navBar li{
    float: left;
    display: inline;
}
.navBar a{
    color: var(--text-color);
    text-align: center;
    padding: 0 10px;
    margin: 0 20px;
    text-decoration: none;
}
.navBar a:hover{
    color: var(--main-color);
}
.navBtn{ 
    color: var(--text-color);
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 40px 35px 0 35px;
}
.container .heading{
    width: 50%;
    padding-bottom: 50px;
}
.container .heading h3{
    font-size: 3em;
    font-weight: bolder;
    border-bottom: 3px solid #222;
    padding-bottom: 10px;
}
.container .heading h3 span{
    font-weight: 100;
    font-family: 'Poppins', sans-serif;
}
.container .box{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.container .box .dream{
    display: flex;
    flex-direction: column;
    width: 32.5%;
}
.container .box .dream img{
    width: 100%;
    height: 100%;
    padding-bottom: 15px;
    border-radius: 5px;
}
.container .btn{
    margin: 40px 0 70px 0;
    background: #222;
    padding: 15px 40px;
    border-radius: 5px;
    cursor: pointer;
    transition: all ease 1s;
}
.container .btn:hover{
    transform: scaleY(1.1);
}
.container .btn a{
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    letter-spacing: 1px;
    text-transform: uppercase;
}
footer{
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f1f7fb;
  color: #1a1a1a;
  justify-content: space-around;
}
.footer-Logo img{
  width: 10em;
}
.dropdown{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dropdown a{
  color: #1a1a1a;
}
.dropdown a:hover{
  color: #1a1a1a94;
}

@media (min-width: 768px) {
    .navBar {
        flex-direction: row;
    }
    .navBar ul {
        margin-left: 26%;
    }
    footer {
        flex-direction: row;
    }
}
@media only screen and (max-width:768px){
    .container .box{
    flex-direction: column;
    }
    .container .box .dream{
        width: 100%;
    }
    .footer-Logo img{
      width: 5em;
    }
    .dropdown{
      flex-direction: row;
    }
}

@media only screen and (max-width:590px){
.container .heading h3{
    font-size: 1.3em;
}
}